#!/bin/sh
which uci > /dev/null || exit 0
uci -q get ucitrack.@rtty[0] > /dev/null && {
  uci delete ucitrack.@rtty[0]
  uci commit
}
